home *** CD-ROM | disk | FTP | other *** search
Makefile | 1999-09-11 | 808 b | 47 lines |
- CC = cc
- #CFLAGS = -g -DDEBUG -f68881 #for debugging
- #CFLAGS = -O4 # for sun4
- #CFLAGS = -O -f68881 #for sun3
- CFLAGS = -O3 # Silicon Graphics
- CLIBS = -lm
- OBJECTS = conv.o ctor.o det.o dtor.o edge_maps.o filter.o \
- find_edges.o hyst.o loc.o thin.o thld.o write.o
-
- bcd: bcd.o $(OBJECTS)
- $(CC) -o bcd $(CFLAGS) bcd.o $(OBJECTS) $(CLIBS)
-
- bcd.o: edge_finder.h
-
- cb.o: edge_finder.h
-
- conv.o: edge_finder.h
-
- ctor.o: edge_finder.h
-
- det.o: edge_finder.h
-
- dtor.o: edge_finder.h
-
- edge_maps.o: edge_finder.h
-
- filter.o: edge_finder.h
-
- find_edges.o: edge_finder.h
-
- hyst.o: edge_finder.h
-
- loc.o: edge_finder.h
-
- thin.o: edge_finder.h
-
- thld.o: edge_finder.h
-
- write.o: edge_finder.h
-
- clean:
- rm *.o
-
- cleanimages:
- rm det135 det45 detx dety map thin_map hyst_map hi_map gauss
-
-